@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;600&display=swap');

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

body {
    background: linear-gradient(135deg, #d1e7dd, #fefae0);
    color: #1f2937;
    font-family: 'SF Pro Display', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    text-align: center;
    border: none;
}

h1 {
    font-weight: 600;
    font-size: 3rem;
    margin: 0;
    color: #0f5132;
}

h2 {
    font-weight: 400;
    font-size: 1.8rem;
    margin: 10px 0 0;
    color: #6c757d;
}

#Btn-hlder, #Btn-hlde2 {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
}

#Button {
    height: 50px;
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    background: #0f5132;
    color: #ffffff;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#Button:hover {
    background-color: #14532d;
    transform: translateY(-2px);
}

#LogoImg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    animation: slideDown 1s ease-in-out;
    border: 4px solid #0f5132;
}

#dropdown-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

#menu-icon {
    width: 50px;
    height: 50px;
    background: #0f5132;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#menu-icon:hover {
    background-color: #14532d;
    transform: scale(1.1);
}

#menu-icon .line {
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
}

#menu-options {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 180px;
}

#menu-options a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #1f2937;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#menu-options a:hover {
    background-color: #e9ecef;
}

#dropdown-menu:hover #menu-options {
    display: block;
}

@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #Btn-hlder, #Btn-hlde2 {
        flex-direction: column;
        align-items: center;
    }

    #Button {
        width: 90%;
    }
}